diff options
| author | mo k <m@mokhan.ca> | 2011-11-11 20:19:51 -0700 |
|---|---|---|
| committer | mo k <m@mokhan.ca> | 2011-11-11 20:19:51 -0700 |
| commit | 561323b29f4c17cd3490ace2b71d4ff3b326ed25 (patch) | |
| tree | ba9e088379cd494a3e17ec6fcb11198e6fd2a45d | |
| parent | 50bfdb46921374cefe0f49fc01b62ad04e1284ab (diff) | |
moved the require 'test/unit' from each spec file to the ts_all file.
| -rw-r--r-- | test/book_specs.rb | 1 | ||||
| -rw-r--r-- | test/library_specs.rb | 1 | ||||
| -rw-r--r-- | test/stack_specs.rb | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/test/book_specs.rb b/test/book_specs.rb index 2dbdd31..7b9c52f 100644 --- a/test/book_specs.rb +++ b/test/book_specs.rb @@ -1,4 +1,3 @@ -require "test/unit" require "Book" class TestBook < Test::Unit::TestCase diff --git a/test/library_specs.rb b/test/library_specs.rb index eafe05b..a87a87c 100644 --- a/test/library_specs.rb +++ b/test/library_specs.rb @@ -1,4 +1,3 @@ -require "test/unit" require "book" # require "library" diff --git a/test/stack_specs.rb b/test/stack_specs.rb index 5fc7f8c..2a98340 100644 --- a/test/stack_specs.rb +++ b/test/stack_specs.rb @@ -1,4 +1,3 @@ -require "test/unit" require "stack" class StackTests < Test::Unit::TestCase |
