Displaying 2 results from an estimated 2 matches for "mytestcase".
2007 Nov 08
1
Running tests from another test case
I''m in the position that would be really useful for me to run in a
testcase a test belonging to another testcase.
Assuming I do not want to use modules, how could I do that?
My code would be something like this:
class MyTestCase < Test::Rails:TestCase
def myTest
matc = MyAnotherTestCase.new
end
end
The code above seems to work but when I run MyTestCase all the tests
belonging to MyAnotherTestCase are executed.
What would I need to do to execute only a single test from
MyAnotherTestCase?
Any suggestions?
--...
2007 Sep 10
2
Removing an AR class definition, for testing plugins
I''m writing an acts_as_* plugin and am trying to BDD it. Ideally my
specs would look like:
describe ActsAsCloneable, " basic cloning" do
load_example_classes
School.class_eval do
acts_as_cloneable
end
before(:each) do
@old_school = School.create! :name => "Baylake Pines", :city =>
"Virginia Beach", :guid => "abc123"