test/system/much-mixin_tests.rb in much-mixin-0.0.1 vs test/system/much-mixin_tests.rb in much-mixin-0.2.3

- old
+ new

@@ -9,18 +9,18 @@ setup do @my_class = MyClass.new end subject{ @my_class } - should "class eval the plugin included block on MyClass" do + should "class eval the mix-in included block on MyClass" do assert_equal "another", subject.another end - should "add the plugin class methods to MyClass" do + should "add the mix-in class methods to MyClass" do assert_equal "a-class-method", MyClass.a_class_method end - should "add the plugin instance methods to MyClass" do + should "add the mix-in instance methods to MyClass" do assert_equal "an-instance-method", subject.an_instance_method end module AnotherMixin def another