From: Zoran Date: Thu, 19 May 2016 16:54:54 +0000 (-0700) Subject: update gem tests for gem's new namespacing X-Git-Tag: v2.2.1~3^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fa82041b2a35fe21434b415b5e6b97a93fad62a6;p=thirdparty%2Ffoundation%2Ffoundation-emails.git update gem tests for gem's new namespacing --- diff --git a/gem/lib/foundation_emails.rb b/gem/lib/foundation_emails.rb index 7dae7744..ef054fa9 100644 --- a/gem/lib/foundation_emails.rb +++ b/gem/lib/foundation_emails.rb @@ -1,3 +1,4 @@ +require "foundation_emails/version" require "foundation_emails/engine" module FoundationEmails diff --git a/gem/spec/foundation/emails_spec.rb b/gem/spec/foundation/emails_spec.rb index 727feea7..95071f36 100644 --- a/gem/spec/foundation/emails_spec.rb +++ b/gem/spec/foundation/emails_spec.rb @@ -1,7 +1,7 @@ require "spec_helper" -describe Foundation::Emails do +describe FoundationEmails do it "has a version number" do - expect(Foundation::Emails::VERSION).not_to be nil + expect(FoundationEmails::VERSION).not_to be nil end end