spec/cobregratis/service_spec.rb in cobregratis-0.4.2 vs spec/cobregratis/service_spec.rb in cobregratis-0.4.3

- old
+ new

@@ -1,12 +1,12 @@ -require File.dirname(__FILE__) + '/../spec_helper' +require 'spec_helper' describe Cobregratis::Service do before(:each) do @service = Cobregratis::Service.new end - + it "should be instance of Cobregratis::Base" do - @service.kind_of?(Cobregratis::Base).should be_true + expect(@service.kind_of?(Cobregratis::Base)).to be_true end - + end