integration: merge version-and-commits and main into cli.

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi 2015-05-05 19:52:25 -07:00
parent 2815f100bd
commit eb4df9db00
2 changed files with 5 additions and 9 deletions

View File

@ -2,6 +2,11 @@
load helpers load helpers
@test "create doesn't accept any arugments" {
run swarm create derpderpderp
[ "$status" -ne 0 ]
}
@test "version string should contain a proper number with git commit" { @test "version string should contain a proper number with git commit" {
run swarm -v run swarm -v

View File

@ -1,9 +0,0 @@
#!/usr/bin/env bats
load helpers
@test "test that create doesn't accept any arugments" {
run swarm create derpderpderp
[ "$status" -ne 0 ]
}