acceptance/command/status_spec.rb in vagrant-orchestrate-0.6.1 vs acceptance/command/status_spec.rb in vagrant-orchestrate-0.6.2
- old
+ new
@@ -4,10 +4,11 @@
describe "vagrant orchestrate status", component: "orchestrate/status" do
include_context "acceptance"
TEST_REF = "050bfd9c686b06c292a9614662b0ab1bbf652db3"
TEST_REMOTE_ORIGIN_URL = "http://github.com/Cimpress-MCP/vagrant-orchestrate.git"
+ TEST_REPO = "/users/cbaldauf/dev/vagrant-orchestrate"
before do
environment.skeleton("basic")
end
@@ -23,9 +24,10 @@
# Because vagrant-spec executes in a clean tmp folder, it isn't a git repo,
# and the normal git commands don't work. We'll inject some test data using
# environment variables. See vagrant-orchestrate/repo_status.rb for impl.
ENV["VAGRANT_ORCHESTRATE_STATUS_TEST_REF"] = TEST_REF
ENV["VAGRANT_ORCHESTRATE_STATUS_TEST_REMOTE_ORIGIN_URL"] = TEST_REMOTE_ORIGIN_URL
+ ENV["VAGRANT_ORCHESTRATE_STATUS_TEST_REPO"] = TEST_REPO
ENV["VAGRANT_ORCHESTRATE_NO_GUARD_CLEAN"] = "true"
execute("vagrant", "orchestrate", "push", "/managed-1/")
result = execute("vagrant", "orchestrate", "status", "/managed-1/")
status = VagrantPlugins::Orchestrate::RepoStatus.new
# Punting on date. Can always add it later if needed