Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/syucream/mruby-rspec

rspec for mruby.
https://github.com/syucream/mruby-rspec

mruby rspec

Last synced: about 2 months ago
JSON representation

rspec for mruby.

Awesome Lists containing this project

README

        

# mruby-rspec

mruby [rspec](http://rspec.info/)

# example

If you write a below spec:

```ruby
describe "example" do
it "should be successed." do
expect(true).to be true
end

it "should be failed." do
expect(true).to be false
end
end
```

then you can get a result:

```
$ mruby examples/rspec_test.rb
.F
```

# License

MITL

This product is based on [sagmor/mruby-spec](https://github.com/sagmor/mruby-spec), and [mruby](https://github.com/mruby/mruby).