Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mocoso

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mocoso

  • 1.2.3
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Mocoso Build Status

Yet Another Simple Stub & Mock library. This is inspired by Minitest::Mock and Override.

Description

Mocoso meets the following criteria:

  • Simplicity.
  • Always restore stubbed methods to their original implementations.
  • Doesn't allow to stub or mock undefined methods.
  • Doesn't monkey-patch any class or object.
  • Test-framework agnostic. No integration code.

Installation

Add this line to your application's Gemfile:

gem "mocoso"

And then execute:

$ bundle

Or install it yourself as:

$ gem install mocoso

Usage

A quick example (uses Cutest):

require "cutest"
require "mocoso"

include Mocoso

test "mocking a class method" do
  user = User.new

  expect(User, :find, with: [1], return: user) do
    assert_equal user, User.find(1)
  end

  assert_equal nil, User.find(1)
end

test "stubbing an instance method" do
  user = User.new

  stub(user, :valid?, true) do
    assert user.valid?
  end

  assert !user.valid?
end

Check Official Documentation for more details.

Contributing

Fork the project with:

$ git clone git@github.com:frodsan/mocoso.git

To install dependencies, use:

$ bundle install

To run the test suite, do:

$ rake test

For bug reports and pull requests use GitHub.

License

Mocoso is released under the MIT License.

FAQs

Package last updated on 12 Apr 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc