spec/commands/server_spec.rb in softcover-1.7.5 vs spec/commands/server_spec.rb in softcover-1.8.0

- old
+ new

@@ -11,13 +11,15 @@ end it '#run' do Softcover::App.should_receive :run! - port = 5000 - bind = "localhost" + port = 5000 + bind = "localhost" + pdf = false + overfull = false - subject.run port, bind + subject.run port, bind, pdf, overfull expect(Softcover::App.port).to eq port expect(Softcover::App.bind).to eq bind end end