Skip to content

Instantly share code, notes, and snippets.

@dmitryrck
Last active May 16, 2017 23:26
Show Gist options
  • Save dmitryrck/ccb4fd84ffd7e77e4f06f578ce192971 to your computer and use it in GitHub Desktop.
Save dmitryrck/ccb4fd84ffd7e77e4f06f578ce192971 to your computer and use it in GitHub Desktop.
minitest.cr
/doc/
/lib/
/bin/
/.shards/
language: crystal

run-test-run

TODO: Write a description here

Installation

TODO: Write installation instructions here

Usage

TODO: Write usage instructions here

Development

TODO: Write development instructions here

Contributing

  1. Fork it ( https://github.com/dmitryrck/run-test-run/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors

  • dmitryrck Dmitry Rocha - creator, maintainer
The MIT License (MIT)
Copyright (c) 2017 Dmitry Rocha
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
require "./run-test-run/*"
module Run::Test::Run
# TODO Put your code here
end
version: 1.0
shards:
minitest:
github: ysbaddaden/minitest.cr
version: 0.3.5
name: run-test-run
version: 0.1.0
authors:
- Dmitry Rocha <[email protected]>
targets:
run-test-run:
main: run-test-run.cr
dependencies:
minitest:
github: ysbaddaden/minitest.cr
crystal: 0.22.0
license: MIT
require "minitest/autorun"
class TrueTest < Minitest::Test
def test_assert_true
assert true
end
end
require "minitest/autorun"
class FalseTest < Minitest::Test
def test_assert_false
refute false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment