Skip to content

Commit

Permalink
closes #6 - fixes name of minitest class
Browse files Browse the repository at this point in the history
  • Loading branch information
imageaid committed May 3, 2016
1 parent 2777f29 commit 9c61f62
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.1.3] - 2016-05-03
### Fixed
- Fixed the name of the class in the Minitest test class

## [1.1.2] - 2016-05-02
### Added
- TestUnit (Minitest) test files added
Expand All @@ -13,5 +17,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Generate a service class and an attendant spec file

[1.1.3]: https://github.com/imageaid/rails_service_generator/compare/v1.1.2...v1.1.3
[1.1.2]: https://github.com/imageaid/rails_service_generator/compare/v1.0.0...v1.1.2
[1.0.0]: https://github.com/imageaid/rails_service_generator/tree/v1.0.0
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<%= "require 'test_helper'" %>

<%= "class #{module_name}Test < ActiveSupport::TestCase" %>
<%= "class #{class_name}Test < ActiveSupport::TestCase" %>
<%= 'def test_some_stuff' %>
<%= "assert (1 == 2), 'You best test yourself before you wreck yourself!'" %>
<%= 'end' %>
Expand Down
2 changes: 1 addition & 1 deletion lib/rails_services/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RailsServices
VERSION = '1.1.2'
VERSION = '1.1.3'
end

0 comments on commit 9c61f62

Please sign in to comment.