Fix build for those without integration environments configured
This commit is contained in:
parent
38289b1a47
commit
17521f99cf
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#This is a spec for the class that runs the servers used in the other multi-server specs
|
||||
|
||||
require 'spec_helper'
|
||||
if Server.all.first.running?
|
||||
if Server.all && Server.all.first && Server.all.first.running?
|
||||
describe Server do
|
||||
before do
|
||||
Server.all.each{|s| s.truncate_database }
|
||||
|
|
|
|||
Loading…
Reference in a new issue