Sha256: 4b57752dfcbf0ec46bf2620b18f003d81b1b38157f87817ca61eff984d9db3e1
Contents?: true
Size: 1.96 KB
Versions: 8
Compression:
Stored size: 1.96 KB
Contents
# frozen_string_literal: true require "rails_helper" module DefraRubyMocks RSpec.describe CompaniesHouseService do describe ".run" do subject { described_class.run(company_number) } context "when the company number is 99999999 for not found" do let(:company_number) { "99999999" } it "raises a NotFoundError" do expect { subject }.to raise_error(NotFoundError) end end context "when the company number is from the 'specials' list" do specials = CompaniesHouseService.special_company_numbers specials.each do |company_number, status| context "and the number is #{company_number}" do let(:company_number) { company_number } it "returns a company_status of '#{status}'" do expect(subject.company_status).to eq(status) end it "returns a company_type of 'ltd'" do expect(subject.company_type).to eq("ltd") end end end end context "when the company is an LLP" do CompaniesHouseService.llp_company_numbers.each do |company_number| let(:company_number) { company_number } it "returns a company_status of 'active'" do expect(subject.company_status).to eq("active") end it "returns a company_type of 'llp'" do expect(subject.company_type).to eq("llp") end end end context "when the company number is not from the 'specials' list" do context "and it is valid" do let(:company_number) { "SC247974" } it "returns a company_status of 'active'" do expect(subject.company_status).to eq("active") end end context "and it is not valid" do let(:company_number) { "foo" } it "raises a NotFoundError" do expect { subject }.to raise_error(NotFoundError) end end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems