README.md in assert-2.17.0 vs README.md in assert-2.18.0

- old
+ new

@@ -6,15 +6,13 @@ # in test/my_tests.rb require "assert" class MyTests < Assert::Context - test "something" do assert_equal 1, 1 end - end ``` ``` $ assert test/my_tests.rb @@ -411,16 +409,14 @@ If you just want to disable this feature completely: ```ruby Assert.configure do |config| - # run nothing if the `-c` flag is given config.changed_proc Proc.new{ |config, test_paths| [] } # run all test paths if the `-c` flag is given config.changed_proc Proc.new{ |config, test_paths| test_paths } - end ``` ### Pretty Printing values in fail messages