Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/syucream/mruby-rspec
- Owner: syucream
- License: mit
- Created: 2017-02-02T13:51:42.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-31T07:40:13.000Z (about 2 years ago)
- Last Synced: 2024-10-29T12:57:53.972Z (3 months ago)
- Topics: mruby, rspec
- Language: Ruby
- Homepage:
- Size: 31.3 KB
- Stars: 2
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
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
endit "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).