Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add spec for check when there is a version mismatch #361

Merged
merged 1 commit into from
Apr 20, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions spec/integration/check_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,16 @@ describe "check" do
ex.stderr.should be_empty
end
end

it "succeeds when shard.yml version doesn't match git tag" do
metadata = {
dependencies: {
version_mismatch: {git: git_url(:version_mismatch), version: "0.2.0"},
},
}
with_shard(metadata) do
run "shards install"
run "shards check"
end
end
end