spec/paraduct/configuration_spec.rb in paraduct-0.0.3 vs spec/paraduct/configuration_spec.rb in paraduct-1.0.0.beta1
- old
+ new
@@ -9,19 +9,12 @@
describe "#variables" do
subject{ config.variables }
it "should get variables in .paraduct.yml" do
is_expected.to match(
- "ruby" => ["1.9.3", "2.0.0", "2.1.2"],
- "database" => ["mysql", "postgresql"],
- "rails" => ["3.2.0", "4.0.0", "4.1.0"],
+ "RUBY" => ["1.9.3", "2.0.0", "2.1.2"],
+ "DATABASE" => ["mysql", "postgresql"],
+ "RAILS" => ["3.2.0", "4.0.0", "4.1.0"],
)
end
end
-
- describe "#work_dir" do
- subject{ config.work_dir }
-
- it { should eq spec_dir.join("tmp/paraduct_workspace") }
- end
-
end