README.md in test-unit-activesupport-1.0.6 vs README.md in test-unit-activesupport-1.0.7
- old
+ new
@@ -10,19 +10,17 @@
## Install
Require `test/unit/active_support`:
-```
+```ruby
require "test/unit/active_support"
require "active_support"
```
Now you can use full test-unit 3.x features with ActiveSupport.
-```
-require "test/unit/active_support"
-require "active_support"
+```ruby
class YourTest < ActiveSupport::TestCase
# ...
end
```