test/setup.rb in cutest-0.0.6 vs test/setup.rb in cutest-0.1.0
- old
+ new
@@ -20,10 +20,10 @@
test "only the most recently defined setup block is executed" do |value|
assert "Hello world!" == value
end
-module Foo
- test "works inside modules too" do |value|
+scope do
+ test "works inside scopes too" do |value|
assert "Hello world!" == value
end
end