diff options
author | Andrey Andreev <narf@bofh.bg> | 2012-12-03 13:37:47 +0100 |
---|---|---|
committer | Andrey Andreev <narf@bofh.bg> | 2012-12-03 13:37:47 +0100 |
commit | 838a9d69a9139b6bcd6f8765fdd2d58b929e70ad (patch) | |
tree | 3d296693ea910fd5473e9fb7dec825e4e9edae50 /tests | |
parent | 6a38949d5ac50a123c7fdee37d9561e02fa72884 (diff) |
[ci skip] Cleaned some spaces
Diffstat (limited to 'tests')
-rw-r--r-- | tests/codeigniter/helpers/date_helper_test.php | 1 | ||||
-rw-r--r-- | tests/codeigniter/helpers/file_helper_test.php | 2 | ||||
-rw-r--r-- | tests/codeigniter/helpers/html_helper_test.php | 1 | ||||
-rw-r--r-- | tests/codeigniter/helpers/path_helper_test.php | 1 | ||||
-rw-r--r-- | tests/codeigniter/libraries/Driver_test.php | 3 | ||||
-rw-r--r-- | tests/codeigniter/libraries/Encrypt_test.php | 1 | ||||
-rw-r--r-- | tests/codeigniter/libraries/Session_test.php | 4 | ||||
-rw-r--r-- | tests/mocks/ci_testconfig.php | 2 | ||||
-rw-r--r-- | tests/mocks/core/common.php | 1 | ||||
-rw-r--r-- | tests/mocks/libraries/driver.php | 2 | ||||
-rw-r--r-- | tests/mocks/libraries/session.php | 2 |
11 files changed, 10 insertions, 10 deletions
diff --git a/tests/codeigniter/helpers/date_helper_test.php b/tests/codeigniter/helpers/date_helper_test.php index 1458acd3e..0f16e6c49 100644 --- a/tests/codeigniter/helpers/date_helper_test.php +++ b/tests/codeigniter/helpers/date_helper_test.php @@ -5,7 +5,6 @@ class Date_helper_test extends CI_TestCase { public function set_up() { $this->helper('date'); - $this->time = time(); } diff --git a/tests/codeigniter/helpers/file_helper_test.php b/tests/codeigniter/helpers/file_helper_test.php index 9b03da9d7..3a6c73a5c 100644 --- a/tests/codeigniter/helpers/file_helper_test.php +++ b/tests/codeigniter/helpers/file_helper_test.php @@ -148,6 +148,4 @@ class File_helper_Test extends CI_TestCase { // // } - // -------------------------------------------------------------------- - }
\ No newline at end of file diff --git a/tests/codeigniter/helpers/html_helper_test.php b/tests/codeigniter/helpers/html_helper_test.php index 4dd717ff7..d66ad895c 100644 --- a/tests/codeigniter/helpers/html_helper_test.php +++ b/tests/codeigniter/helpers/html_helper_test.php @@ -88,4 +88,5 @@ EOH; $this->assertEquals($expect, meta(array('name' => 'foo'))); } + }
\ No newline at end of file diff --git a/tests/codeigniter/helpers/path_helper_test.php b/tests/codeigniter/helpers/path_helper_test.php index 0faf6f383..d25c3ed9b 100644 --- a/tests/codeigniter/helpers/path_helper_test.php +++ b/tests/codeigniter/helpers/path_helper_test.php @@ -26,6 +26,7 @@ class Path_helper_test extends CI_TestCase { set_realpath('/path/to/nowhere', TRUE); } + } /* End of file path_helper_test.php */
\ No newline at end of file diff --git a/tests/codeigniter/libraries/Driver_test.php b/tests/codeigniter/libraries/Driver_test.php index fb5f3f020..d98e8ab98 100644 --- a/tests/codeigniter/libraries/Driver_test.php +++ b/tests/codeigniter/libraries/Driver_test.php @@ -173,4 +173,5 @@ class Driver_test extends CI_TestCase { // Can we call the parent method? $this->assertEquals($return, $child->$method()); } -} + +}
\ No newline at end of file diff --git a/tests/codeigniter/libraries/Encrypt_test.php b/tests/codeigniter/libraries/Encrypt_test.php index 21ac85f03..a08db8ed0 100644 --- a/tests/codeigniter/libraries/Encrypt_test.php +++ b/tests/codeigniter/libraries/Encrypt_test.php @@ -51,7 +51,6 @@ class Encrypt_test extends CI_TestCase { // -------------------------------------------------------------------- - public function test_set_cipher() { if ( ! $this->mcrypt) diff --git a/tests/codeigniter/libraries/Session_test.php b/tests/codeigniter/libraries/Session_test.php index 7ef3a3667..6edda99d7 100644 --- a/tests/codeigniter/libraries/Session_test.php +++ b/tests/codeigniter/libraries/Session_test.php @@ -4,6 +4,7 @@ * Session driver library unit test */ class Session_test extends CI_TestCase { + protected $settings = array( 'use_cookies' => 0, 'use_only_cookies' => 0, @@ -421,4 +422,5 @@ class Session_test extends CI_TestCase { $this->session->native->sess_destroy(); $this->assertNull($this->session->native->userdata($key)); } -} + +}
\ No newline at end of file diff --git a/tests/mocks/ci_testconfig.php b/tests/mocks/ci_testconfig.php index 0c52bb984..f80adc5d4 100644 --- a/tests/mocks/ci_testconfig.php +++ b/tests/mocks/ci_testconfig.php @@ -17,4 +17,4 @@ class CI_TestConfig { return TRUE; } -} +}
\ No newline at end of file diff --git a/tests/mocks/core/common.php b/tests/mocks/core/common.php index 9289b2716..24d645ae3 100644 --- a/tests/mocks/core/common.php +++ b/tests/mocks/core/common.php @@ -148,7 +148,6 @@ if ( ! function_exists('_exception_handler')) } } - // We assume a few things about our environment ... // -------------------------------------------------------------------- diff --git a/tests/mocks/libraries/driver.php b/tests/mocks/libraries/driver.php index 91bb01596..633194345 100644 --- a/tests/mocks/libraries/driver.php +++ b/tests/mocks/libraries/driver.php @@ -24,4 +24,4 @@ class Mock_Libraries_Driver extends CI_Driver_Library { { return $this->lib_name; } -} +}
\ No newline at end of file diff --git a/tests/mocks/libraries/session.php b/tests/mocks/libraries/session.php index 11b27cf67..562033bbf 100644 --- a/tests/mocks/libraries/session.php +++ b/tests/mocks/libraries/session.php @@ -33,4 +33,4 @@ class Mock_Libraries_Session_cookie extends CI_Session_cookie { $_COOKIE[$name] = $value; } } -} +}
\ No newline at end of file |