spec/shelly/app_spec.rb in shelly-0.1.22 vs spec/shelly/app_spec.rb in shelly-0.1.23
- old
+ new
@@ -138,11 +138,10 @@
end
describe "#attributes" do
before do
@response = {"web_server_ip" => "192.0.2.1",
- "mail_server_ip" => "192.0.2.3",
"state" => "running",
"trial" => true,
"credit" => 23.0,
"git_info" => {
"deployed_commit_message" => "Commit message",
@@ -175,15 +174,9 @@
end
describe "#web_server_ip" do
it "should return web server ip address" do
@app.web_server_ip.should == "192.0.2.1"
- end
- end
-
- describe "#mail_server_ip" do
- it "should return mail server ip address" do
- @app.mail_server_ip.should == "192.0.2.3"
end
end
describe "#state" do
it "should return state of cloud" do