elixir-amazon-history/test/amazon_history/cli_test.exs

32 lines
956 B
Elixir
Raw Normal View History

2018-04-07 08:07:31 +00:00
defmodule CliTest do
use ExUnit.Case
describe "parse_args/1" do
import AmazonHistory.CLI, only: [parse_args: 1]
test ":help returned by passing -h and --help options" do
assert parse_args(["-h"]) == :help
assert parse_args(["--help"]) == :help
end
test ":help returned by passing only a username" do
assert parse_args(["-u", "rob"]) == :help
assert parse_args(["--username", "rob"]) == :help
end
test ":help returned by passing only a password" do
assert parse_args(["-p", "hackme"]) == :help
assert parse_args(["--password", "hackme"]) == :help
end
test "arguments returned by passing valid parameters" do
assert parse_args(["-u", "rob", "-p", "hackme"]) == [username: "rob", password: "hackme"]
assert parse_args(["--username", "rob", "--password", "hackme"]) == [
username: "rob",
password: "hackme"
]
end
end
end