Assert-Mocha
The assert gem with mocha. This gem just mixes in the Mocha API into the Assert context, giving you all the power of Mocha while using Assert.
Usage
Use assert as you normally would. Inherit from a context and use mocha's methods in your tests:
class BaseTest < Asset::Context
desc "some test"
setup do
@user = mock()
@user.expects(:some_method).once
@user.stubs(:name).returns("Someone")
end
subject{ @user }
should have_instance_methods :name
should "call the expected method" do
assert_nothing_raised{ subject.another_method }
end
end
Installation
Add this line to your application's Gemfile:
gem 'logsly'
And then execute:
$ bundle
Or install it yourself as:
$ gem install logsly
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request