Sha256: 6d367a7f472b4dfa6f825effd631001dd2941222c611f946e63f1b08bc0968ae
Contents?: true
Size: 1.14 KB
Versions: 93
Compression:
Stored size: 1.14 KB
Contents
require 'spec_helper' require 'dpl/provider/firebase' describe DPL::Provider::Firebase do subject :provider do described_class.new DummyContext.new, :token => 'abc123' end describe "#check_auth" do it 'should require a token if no FIREBASE_TOKEN is set' do provider.options.update(:token => nil) expect{ provider.check_auth }.to raise_error("must supply token option or FIREBASE_TOKEN environment variable") end it 'should allow no token if FIREBASE_TOKEN is set' do provider.options.update(:token => nil) provider.context.env['FIREBASE_TOKEN'] = 'abc123' expect{ provider.check_auth }.not_to raise_error end end describe "#push_app" do it 'should include the project specified' do provider.options.update(:project => 'myapp-dev') expect(provider.context).to receive(:shell).with("firebase deploy --non-interactive --project myapp-dev --token 'abc123'") provider.push_app end it 'should default to no project override' do expect(provider.context).to receive(:shell).with("firebase deploy --non-interactive --token 'abc123'") provider.push_app end end end
Version data entries
93 entries across 93 versions & 1 rubygems