mirror of
https://github.com/olivierlacan/keep-a-changelog.git
synced 2025-08-25 03:38:13 +02:00
11 lines
196 B
Ruby
11 lines
196 B
Ruby
require "minitest/autorun"
|
|
|
|
class TestMeme < Minitest::Test
|
|
def setup
|
|
@output = `bin/rake build`
|
|
end
|
|
|
|
def test_build
|
|
assert @output.include?("Project built successfully.")
|
|
end
|
|
end |