Project

moguro

0.0
No commit activity in last 3 years
No release in over 3 years
Decorator style assertions and type check library for Contract programming.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Project Readme

Moguro Gem Version Build Status Code Climate Coverage Status

Decorator style assertions and type check library for Contract programming

This gem is still in development and it isnt available to production.

Installation

Add this line to your application's Gemfile:

gem 'moguro'

And then execute:

$ bundle

Or install it yourself as:

$ gem install moguro

Usage

require 'moguro'

class MockClass
  include Moguro::Decorator
  
  # Must match argument names of decorate method
  pre_c ->(a: Integer, b: String) {
    assert_equal(a, 1)
    assert_equal(b, 'b')
  }
 
  def puts_method(a, b)
    puts b
    a + 1
  end
  
  # Return values are auto assigned in order
  post_c -> (first: String) {
    p first
  }
  def post_contract_violation_method
    1
  end
  
end

c = MockClass.new
c.puts_method(1, 'b')
# 1
# => 2

begin 
  c.puts_method('a', 1)
rescue => e
  p e
end
# =>
# Type MissMatch: a is expected (Integer) actual a(String) (Moguro::Errors::ArgumentsTypeMismatchError)
# Expected: [a: (Integer), b: (String)]
# Actual: [a: a(String), b: 1(Integer)]
# Value guarded in: MockClass::puts_method
# At: #{source_location}

begin
  c.post_contract_violation_method
rescue => e
  p e
end

# =>
# Type MissMatch: first is expected (String) actual 1(Integer)
#  Expected: [first: (String)]
#  Actual: [first: 1(Integer)]
#  Value guarded in: MockClass::post_contract_violation_method
#  At: #{source_location}

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Moguro project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.