defra_ruby_mocks 2.4.1 → 2.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/jobs/defra_ruby_mocks/govpay_payment_callback_job.rb +1 -1
- data/lib/defra_ruby_mocks/version.rb +1 -1
- data/spec/dummy/log/test.log +309 -0
- data/spec/examples.txt +57 -57
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 19d183f643c04c2d04305eed065be722baa44316b88e25cfb554acc6c400643f
|
4
|
+
data.tar.gz: ce81faef997a6cc3c8d75583908470bf93887e8c690b00d5d23a717d9242f280
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7011f24a3a5dc22a452d088745e75d87b9906f9e632214f6c51df0f92343dcab0ebfc474a8983c8d99a89925e9e9ddc4de44a4efa73fc1362363d229fa0bde4a
|
7
|
+
data.tar.gz: 27096c708c2bb8360ace94b5b48beb782429835ae9881a20e16aac58e921b9ea654039e6f674feab46cacc4d5f5f95a22854e39bce838d132d003dbec44b008e
|
@@ -6,7 +6,7 @@ module DefraRubyMocks
|
|
6
6
|
|
7
7
|
def perform(*response_url)
|
8
8
|
Rails.logger.debug "GovpayPaymentCallbackJob calling response URL #{response_url}"
|
9
|
-
RestClient::Request.execute(method: :GET, url: response_url)
|
9
|
+
RestClient::Request.execute(method: :GET, url: response_url[0])
|
10
10
|
rescue RestClient::ExceptionWithResponse => e
|
11
11
|
Rails.logger.debug "GovpayPaymentCallbackJob: RestClient received response: #{e}"
|
12
12
|
rescue StandardError => e
|
data/spec/dummy/log/test.log
CHANGED
@@ -1702,3 +1702,312 @@ Processing by DefraRubyMocks::CompanyController#officers as HTML
|
|
1702
1702
|
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/officers.json.erb
|
1703
1703
|
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/officers.json.erb (Duration: 0.6ms | Allocations: 104)
|
1704
1704
|
Completed 200 OK in 2ms (Views: 1.2ms | Allocations: 595)
|
1705
|
+
Started GET "/defra_ruby_mocks/company/company-no/officers" for 127.0.0.1 at 2023-06-05 17:09:03 +0100
|
1706
|
+
Started GET "/defra_ruby_mocks/company/company-no/officers" for 127.0.0.1 at 2023-06-05 17:09:03 +0100
|
1707
|
+
Processing by DefraRubyMocks::CompanyController#officers as HTML
|
1708
|
+
Parameters: {"id"=>"company-no"}
|
1709
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/officers.json.erb
|
1710
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/officers.json.erb (Duration: 2.8ms | Allocations: 265)
|
1711
|
+
Completed 200 OK in 15ms (Views: 9.7ms | Allocations: 2493)
|
1712
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds/j6se0f2o427g28g8yg3u3i" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1713
|
+
Processing by DefraRubyMocks::GovpayController#refund_details as HTML
|
1714
|
+
Parameters: {"payment_id"=>"12345678901234567890123456", "refund_id"=>"j6se0f2o427g28g8yg3u3i"}
|
1715
|
+
Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 221)
|
1716
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1717
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1718
|
+
Parameters: {"amount"=>nil, "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1719
|
+
MOCKS: Govpay payment creation error: param is missing or the value is empty: amount
|
1720
|
+
Did you mean? amount
|
1721
|
+
action
|
1722
|
+
controller
|
1723
|
+
return_url
|
1724
|
+
Completed 500 Internal Server Error in 0ms (Allocations: 112)
|
1725
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1726
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1727
|
+
Parameters: {"amount"=>"14500", "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1728
|
+
[ActiveJob] Enqueued DefraRubyMocks::GovpayPaymentCallbackJob (Job ID: a26e537d-d426-4090-ada3-e38402b82ff2) to Test(default) with arguments: "https://your.service.gov.uk/completed"
|
1729
|
+
Completed 200 OK in 5ms (Views: 0.4ms | Allocations: 516)
|
1730
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1731
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1732
|
+
Parameters: {"amount"=>"14500", "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1733
|
+
[ActiveJob] Enqueued DefraRubyMocks::GovpayPaymentCallbackJob (Job ID: 896c5bdb-1999-4252-bf6b-d97608b5bfc9) to Test(default) with arguments: "https://your.service.gov.uk/completed"
|
1734
|
+
Completed 200 OK in 2ms (Views: 0.3ms | Allocations: 380)
|
1735
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1736
|
+
Processing by DefraRubyMocks::GovpayController#create_refund as HTML
|
1737
|
+
Parameters: {"amount"=>"2000", "refund_amount_available"=>"5000", "payment_id"=>"12345678901234567890123456"}
|
1738
|
+
Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 160)
|
1739
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1740
|
+
Processing by DefraRubyMocks::GovpayController#create_refund as HTML
|
1741
|
+
Parameters: {"amount"=>"2000", "refund_amount_available"=>nil, "payment_id"=>"12345678901234567890123456"}
|
1742
|
+
MOCKS: Govpay refund error: Invalid refund amount available
|
1743
|
+
Completed 500 Internal Server Error in 0ms (Allocations: 76)
|
1744
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1745
|
+
Processing by DefraRubyMocks::GovpayController#payment_details as HTML
|
1746
|
+
Parameters: {"payment_id"=>"12345678901234567890123456"}
|
1747
|
+
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 572)
|
1748
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/0" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1749
|
+
Processing by DefraRubyMocks::GovpayController#payment_details as HTML
|
1750
|
+
Parameters: {"payment_id"=>"0"}
|
1751
|
+
MOCKS: Govpay payment details error: Invalid Govpay payment ID 0
|
1752
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 72)
|
1753
|
+
Started POST "/defra_ruby_mocks/govpay/payments" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1754
|
+
Started POST "/defra_ruby_mocks/govpay/39y62actlol5nugrckjjekema0/refunds" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1755
|
+
Started GET "/defra_ruby_mocks/govpay/payments/tk4hxpk0lxw8xzxz4pnw6p0ilu" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1756
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1757
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1758
|
+
Parameters: {"id"=>"05868270"}
|
1759
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb
|
1760
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (Duration: 1.2ms | Allocations: 135)
|
1761
|
+
Completed 200 OK in 3ms (Views: 1.8ms | Allocations: 654)
|
1762
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1763
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1764
|
+
Parameters: {"id"=>"SC247974"}
|
1765
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb
|
1766
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (Duration: 0.1ms | Allocations: 24)
|
1767
|
+
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 330)
|
1768
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1769
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1770
|
+
Parameters: {"id"=>"foo"}
|
1771
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb
|
1772
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (Duration: 0.7ms | Allocations: 98)
|
1773
|
+
Completed 404 Not Found in 2ms (Views: 2.1ms | Allocations: 565)
|
1774
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1775
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1776
|
+
Parameters: {"id"=>"99999999"}
|
1777
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb
|
1778
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (Duration: 0.1ms | Allocations: 22)
|
1779
|
+
Completed 404 Not Found in 1ms (Views: 0.6ms | Allocations: 277)
|
1780
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2023-06-05 18:09:23 +0100
|
1781
|
+
Started GET "/defra_ruby_mocks/company/company-no/officers" for 127.0.0.1 at 2023-06-05 17:09:38 +0100
|
1782
|
+
Processing by DefraRubyMocks::CompanyController#officers as HTML
|
1783
|
+
Parameters: {"id"=>"company-no"}
|
1784
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/officers.json.erb
|
1785
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/officers.json.erb (Duration: 1.2ms | Allocations: 265)
|
1786
|
+
Completed 200 OK in 8ms (Views: 5.5ms | Allocations: 2493)
|
1787
|
+
Started GET "/defra_ruby_mocks/company/company-no/officers" for 127.0.0.1 at 2023-06-05 17:09:38 +0100
|
1788
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2023-06-05 17:09:38 +0100
|
1789
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1790
|
+
Parameters: {"id"=>"99999999"}
|
1791
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb
|
1792
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (Duration: 1.0ms | Allocations: 86)
|
1793
|
+
Completed 404 Not Found in 2ms (Views: 2.2ms | Allocations: 543)
|
1794
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2023-06-05 17:09:38 +0100
|
1795
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1796
|
+
Parameters: {"id"=>"foo"}
|
1797
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb
|
1798
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (Duration: 0.1ms | Allocations: 10)
|
1799
|
+
Completed 404 Not Found in 1ms (Views: 0.6ms | Allocations: 253)
|
1800
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2023-06-05 17:09:38 +0100
|
1801
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1802
|
+
Parameters: {"id"=>"SC247974"}
|
1803
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb
|
1804
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (Duration: 0.5ms | Allocations: 123)
|
1805
|
+
Completed 200 OK in 2ms (Views: 1.0ms | Allocations: 629)
|
1806
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2023-06-05 17:09:38 +0100
|
1807
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1808
|
+
Parameters: {"id"=>"05868270"}
|
1809
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb
|
1810
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (Duration: 0.1ms | Allocations: 12)
|
1811
|
+
Completed 200 OK in 1ms (Views: 0.5ms | Allocations: 306)
|
1812
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2023-06-05 17:09:38 +0100
|
1813
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1814
|
+
Processing by DefraRubyMocks::GovpayController#payment_details as HTML
|
1815
|
+
Parameters: {"payment_id"=>"12345678901234567890123456"}
|
1816
|
+
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 601)
|
1817
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/0" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1818
|
+
Processing by DefraRubyMocks::GovpayController#payment_details as HTML
|
1819
|
+
Parameters: {"payment_id"=>"0"}
|
1820
|
+
MOCKS: Govpay payment details error: Invalid Govpay payment ID 0
|
1821
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 76)
|
1822
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds/j6se0f2o427g28g8yg3u3i" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1823
|
+
Processing by DefraRubyMocks::GovpayController#refund_details as HTML
|
1824
|
+
Parameters: {"payment_id"=>"12345678901234567890123456", "refund_id"=>"j6se0f2o427g28g8yg3u3i"}
|
1825
|
+
Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 192)
|
1826
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1827
|
+
Processing by DefraRubyMocks::GovpayController#create_refund as HTML
|
1828
|
+
Parameters: {"amount"=>"2000", "refund_amount_available"=>"5000", "payment_id"=>"12345678901234567890123456"}
|
1829
|
+
Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 160)
|
1830
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1831
|
+
Processing by DefraRubyMocks::GovpayController#create_refund as HTML
|
1832
|
+
Parameters: {"amount"=>"2000", "refund_amount_available"=>nil, "payment_id"=>"12345678901234567890123456"}
|
1833
|
+
MOCKS: Govpay refund error: Invalid refund amount available
|
1834
|
+
Completed 500 Internal Server Error in 0ms (Allocations: 76)
|
1835
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1836
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1837
|
+
Parameters: {"amount"=>"14500", "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1838
|
+
[ActiveJob] Enqueued DefraRubyMocks::GovpayPaymentCallbackJob (Job ID: 5fb976e1-55ee-4cb1-a9a4-5be9a213e8b1) to Test(default) with arguments: "https://your.service.gov.uk/completed"
|
1839
|
+
Completed 200 OK in 3ms (Views: 0.3ms | Allocations: 518)
|
1840
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1841
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1842
|
+
Parameters: {"amount"=>"14500", "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1843
|
+
[ActiveJob] Enqueued DefraRubyMocks::GovpayPaymentCallbackJob (Job ID: b102196b-af2e-4467-88c2-e46bc450ba4f) to Test(default) with arguments: "https://your.service.gov.uk/completed"
|
1844
|
+
Completed 200 OK in 2ms (Views: 0.3ms | Allocations: 380)
|
1845
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1846
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1847
|
+
Parameters: {"amount"=>nil, "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1848
|
+
MOCKS: Govpay payment creation error: param is missing or the value is empty: amount
|
1849
|
+
Did you mean? amount
|
1850
|
+
action
|
1851
|
+
controller
|
1852
|
+
return_url
|
1853
|
+
Completed 500 Internal Server Error in 0ms (Allocations: 108)
|
1854
|
+
Started POST "/defra_ruby_mocks/govpay/t9ksgdw584pt2dxcwouw94q8jw/refunds" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1855
|
+
Started GET "/defra_ruby_mocks/govpay/payments/zntev3yc2d2c7s4qyrp560nzfq" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1856
|
+
Started POST "/defra_ruby_mocks/govpay/payments" for 127.0.0.1 at 2023-06-05 18:09:58 +0100
|
1857
|
+
Started GET "/defra_ruby_mocks/company/company-no/officers" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1858
|
+
Processing by DefraRubyMocks::CompanyController#officers as HTML
|
1859
|
+
Parameters: {"id"=>"company-no"}
|
1860
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/officers.json.erb
|
1861
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/officers.json.erb (Duration: 1.8ms | Allocations: 265)
|
1862
|
+
Completed 200 OK in 12ms (Views: 7.8ms | Allocations: 2493)
|
1863
|
+
Started GET "/defra_ruby_mocks/company/company-no/officers" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1864
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1865
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1866
|
+
Parameters: {"id"=>"05868270"}
|
1867
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb
|
1868
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (Duration: 0.8ms | Allocations: 123)
|
1869
|
+
Completed 200 OK in 3ms (Views: 1.4ms | Allocations: 631)
|
1870
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1871
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1872
|
+
Parameters: {"id"=>"99999999"}
|
1873
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb
|
1874
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (Duration: 0.7ms | Allocations: 86)
|
1875
|
+
Completed 404 Not Found in 2ms (Views: 2.1ms | Allocations: 542)
|
1876
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1877
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1878
|
+
Parameters: {"id"=>"SC247974"}
|
1879
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb
|
1880
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (Duration: 0.1ms | Allocations: 12)
|
1881
|
+
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 306)
|
1882
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1883
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1884
|
+
Parameters: {"id"=>"foo"}
|
1885
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb
|
1886
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (Duration: 0.1ms | Allocations: 10)
|
1887
|
+
Completed 404 Not Found in 1ms (Views: 0.6ms | Allocations: 252)
|
1888
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1889
|
+
Started POST "/defra_ruby_mocks/govpay/payments" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1890
|
+
Started GET "/defra_ruby_mocks/govpay/payments/ebqapm12gtz3ty2gtdcdz48ial" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1891
|
+
Started POST "/defra_ruby_mocks/govpay/3c8456q2974m2spn368tdhrivi/refunds" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1892
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1893
|
+
Processing by DefraRubyMocks::GovpayController#payment_details as HTML
|
1894
|
+
Parameters: {"payment_id"=>"12345678901234567890123456"}
|
1895
|
+
Completed 200 OK in 8ms (Views: 0.8ms | Allocations: 597)
|
1896
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/0" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1897
|
+
Processing by DefraRubyMocks::GovpayController#payment_details as HTML
|
1898
|
+
Parameters: {"payment_id"=>"0"}
|
1899
|
+
MOCKS: Govpay payment details error: Invalid Govpay payment ID 0
|
1900
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 72)
|
1901
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds/j6se0f2o427g28g8yg3u3i" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1902
|
+
Processing by DefraRubyMocks::GovpayController#refund_details as HTML
|
1903
|
+
Parameters: {"payment_id"=>"12345678901234567890123456", "refund_id"=>"j6se0f2o427g28g8yg3u3i"}
|
1904
|
+
Completed 200 OK in 3ms (Views: 0.3ms | Allocations: 213)
|
1905
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1906
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1907
|
+
Parameters: {"amount"=>nil, "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1908
|
+
MOCKS: Govpay payment creation error: param is missing or the value is empty: amount
|
1909
|
+
Did you mean? amount
|
1910
|
+
action
|
1911
|
+
controller
|
1912
|
+
return_url
|
1913
|
+
Completed 500 Internal Server Error in 0ms (Allocations: 104)
|
1914
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1915
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1916
|
+
Parameters: {"amount"=>"14500", "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1917
|
+
[ActiveJob] Enqueued DefraRubyMocks::GovpayPaymentCallbackJob (Job ID: 212aebb1-446f-42af-a219-9707d602cc51) to Test(default) with arguments: "https://your.service.gov.uk/completed"
|
1918
|
+
Completed 200 OK in 5ms (Views: 0.4ms | Allocations: 790)
|
1919
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1920
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1921
|
+
Parameters: {"amount"=>"14500", "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1922
|
+
[ActiveJob] Enqueued DefraRubyMocks::GovpayPaymentCallbackJob (Job ID: 9f7064d8-5121-4deb-829d-744ec019d4f0) to Test(default) with arguments: "https://your.service.gov.uk/completed"
|
1923
|
+
Completed 200 OK in 2ms (Views: 0.4ms | Allocations: 372)
|
1924
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1925
|
+
Processing by DefraRubyMocks::GovpayController#create_refund as HTML
|
1926
|
+
Parameters: {"amount"=>"2000", "refund_amount_available"=>"5000", "payment_id"=>"12345678901234567890123456"}
|
1927
|
+
Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 156)
|
1928
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds" for 127.0.0.1 at 2023-06-05 17:10:49 +0100
|
1929
|
+
Processing by DefraRubyMocks::GovpayController#create_refund as HTML
|
1930
|
+
Parameters: {"amount"=>"2000", "refund_amount_available"=>nil, "payment_id"=>"12345678901234567890123456"}
|
1931
|
+
MOCKS: Govpay refund error: Invalid refund amount available
|
1932
|
+
Completed 500 Internal Server Error in 0ms (Allocations: 72)
|
1933
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-05 17:12:28 +0100
|
1934
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1935
|
+
Parameters: {"amount"=>"14500", "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1936
|
+
[ActiveJob] Enqueued DefraRubyMocks::GovpayPaymentCallbackJob (Job ID: 1c68c906-c308-4405-8453-e2427e31487e) to Test(default) with arguments: "https://your.service.gov.uk/completed"
|
1937
|
+
Completed 200 OK in 7ms (Views: 0.4ms | Allocations: 1369)
|
1938
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1939
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1940
|
+
Parameters: {"amount"=>nil, "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1941
|
+
MOCKS: Govpay payment creation error: param is missing or the value is empty: amount
|
1942
|
+
Did you mean? amount
|
1943
|
+
action
|
1944
|
+
controller
|
1945
|
+
return_url
|
1946
|
+
Completed 500 Internal Server Error in 1ms (Allocations: 154)
|
1947
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1948
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1949
|
+
Parameters: {"amount"=>"14500", "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1950
|
+
[ActiveJob] Enqueued DefraRubyMocks::GovpayPaymentCallbackJob (Job ID: 330b6896-0a3c-4456-b88b-ef6027e6dcd5) to Test(default) with arguments: "https://your.service.gov.uk/completed"
|
1951
|
+
Completed 200 OK in 4ms (Views: 0.6ms | Allocations: 547)
|
1952
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1953
|
+
Processing by DefraRubyMocks::GovpayController#create_payment as HTML
|
1954
|
+
Parameters: {"amount"=>"14500", "reference"=>"12345", "description"=>"Pay your council tax", "return_url"=>"https://your.service.gov.uk/completed"}
|
1955
|
+
[ActiveJob] Enqueued DefraRubyMocks::GovpayPaymentCallbackJob (Job ID: 2747a5d9-0b4d-462d-ae60-92a2bf493bf4) to Test(default) with arguments: "https://your.service.gov.uk/completed"
|
1956
|
+
Completed 200 OK in 2ms (Views: 0.3ms | Allocations: 380)
|
1957
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1958
|
+
Processing by DefraRubyMocks::GovpayController#create_refund as HTML
|
1959
|
+
Parameters: {"amount"=>"2000", "refund_amount_available"=>nil, "payment_id"=>"12345678901234567890123456"}
|
1960
|
+
MOCKS: Govpay refund error: Invalid refund amount available
|
1961
|
+
Completed 500 Internal Server Error in 0ms (Allocations: 76)
|
1962
|
+
Started POST "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1963
|
+
Processing by DefraRubyMocks::GovpayController#create_refund as HTML
|
1964
|
+
Parameters: {"amount"=>"2000", "refund_amount_available"=>"5000", "payment_id"=>"12345678901234567890123456"}
|
1965
|
+
Completed 200 OK in 1ms (Views: 0.3ms | Allocations: 160)
|
1966
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/0" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1967
|
+
Processing by DefraRubyMocks::GovpayController#payment_details as HTML
|
1968
|
+
Parameters: {"payment_id"=>"0"}
|
1969
|
+
MOCKS: Govpay payment details error: Invalid Govpay payment ID 0
|
1970
|
+
Completed 422 Unprocessable Entity in 0ms (Allocations: 72)
|
1971
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1972
|
+
Processing by DefraRubyMocks::GovpayController#payment_details as HTML
|
1973
|
+
Parameters: {"payment_id"=>"12345678901234567890123456"}
|
1974
|
+
Completed 200 OK in 1ms (Views: 0.7ms | Allocations: 572)
|
1975
|
+
Started GET "/defra_ruby_mocks/govpay/v1/payments/12345678901234567890123456/refunds/j6se0f2o427g28g8yg3u3i" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1976
|
+
Processing by DefraRubyMocks::GovpayController#refund_details as HTML
|
1977
|
+
Parameters: {"payment_id"=>"12345678901234567890123456", "refund_id"=>"j6se0f2o427g28g8yg3u3i"}
|
1978
|
+
Completed 200 OK in 1ms (Views: 0.2ms | Allocations: 192)
|
1979
|
+
Started GET "/defra_ruby_mocks/govpay/payments/a37bqitfy30s3gsdoc5b4sga09" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1980
|
+
Started POST "/defra_ruby_mocks/govpay/payments" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1981
|
+
Started POST "/defra_ruby_mocks/govpay/ebjahhyf3w5ajxjudnhwsj7vvh/refunds" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1982
|
+
Started GET "/defra_ruby_mocks/company/company-no/officers" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1983
|
+
Processing by DefraRubyMocks::CompanyController#officers as HTML
|
1984
|
+
Parameters: {"id"=>"company-no"}
|
1985
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/officers.json.erb
|
1986
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/officers.json.erb (Duration: 7.2ms | Allocations: 278)
|
1987
|
+
Completed 200 OK in 33ms (Views: 23.2ms | Allocations: 2471)
|
1988
|
+
Started GET "/defra_ruby_mocks/company/company-no/officers" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1989
|
+
Started GET "/defra_ruby_mocks/company/99999999" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1990
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1991
|
+
Parameters: {"id"=>"99999999"}
|
1992
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb
|
1993
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (Duration: 1.8ms | Allocations: 98)
|
1994
|
+
Completed 404 Not Found in 4ms (Views: 3.4ms | Allocations: 566)
|
1995
|
+
Started GET "/defra_ruby_mocks/company/foo" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
1996
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
1997
|
+
Parameters: {"id"=>"foo"}
|
1998
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb
|
1999
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/not_found.json.erb (Duration: 0.1ms | Allocations: 22)
|
2000
|
+
Completed 404 Not Found in 1ms (Views: 0.6ms | Allocations: 277)
|
2001
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
2002
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
2003
|
+
Parameters: {"id"=>"SC247974"}
|
2004
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb
|
2005
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (Duration: 0.8ms | Allocations: 135)
|
2006
|
+
Completed 200 OK in 3ms (Views: 1.4ms | Allocations: 653)
|
2007
|
+
Started GET "/defra_ruby_mocks/company/05868270" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
2008
|
+
Processing by DefraRubyMocks::CompanyController#show as HTML
|
2009
|
+
Parameters: {"id"=>"05868270"}
|
2010
|
+
Rendering /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb
|
2011
|
+
Rendered /Users/pauldoyle/dev/wcr-vagrant/defra-ruby-mocks/app/views/defra_ruby_mocks/company/show.json.erb (Duration: 0.1ms | Allocations: 24)
|
2012
|
+
Completed 200 OK in 1ms (Views: 0.6ms | Allocations: 330)
|
2013
|
+
Started GET "/defra_ruby_mocks/company/SC247974" for 127.0.0.1 at 2023-06-06 11:48:26 +0100
|
data/spec/examples.txt
CHANGED
@@ -1,68 +1,68 @@
|
|
1
1
|
example_id | status | run_time |
|
2
2
|
---------------------------------------------------------------- | ------ | --------------- |
|
3
|
-
./spec/defra_ruby_mocks_spec.rb[1:1:1] | passed | 0.
|
4
|
-
./spec/defra_ruby_mocks_spec.rb[1:2:1:1] | passed | 0.
|
5
|
-
./spec/defra_ruby_mocks_spec.rb[1:2:2:1] | passed | 0.
|
6
|
-
./spec/lib/configuration_spec.rb[1:1:1:1] | passed | 0.
|
7
|
-
./spec/lib/configuration_spec.rb[1:1:2:1] | passed | 0.
|
8
|
-
./spec/lib/configuration_spec.rb[1:1:3:1] | passed | 0.
|
9
|
-
./spec/lib/configuration_spec.rb[1:1:4:1] | passed | 0.
|
10
|
-
./spec/lib/configuration_spec.rb[1:2:1:1] | passed | 0.
|
11
|
-
./spec/lib/configuration_spec.rb[1:2:2:1] | passed | 0.
|
12
|
-
./spec/lib/configuration_spec.rb[1:2:3:1] | passed | 0.
|
13
|
-
./spec/lib/configuration_spec.rb[1:2:4:1] | passed | 0.
|
14
|
-
./spec/requests/company_spec.rb[1:1:1:1] | passed | 0.
|
15
|
-
./spec/requests/company_spec.rb[1:1:2:1] | passed | 0.
|
16
|
-
./spec/requests/company_spec.rb[1:1:3:1:1] | passed | 0.
|
17
|
-
./spec/requests/company_spec.rb[1:1:3:2:1] | passed | 0.
|
18
|
-
./spec/requests/company_spec.rb[1:2:1] | passed | 0.
|
19
|
-
./spec/requests/govpay_spec.rb[1:1:1:1:1] | passed | 0.
|
20
|
-
./spec/requests/govpay_spec.rb[1:1:1:1:2] | passed | 0.
|
21
|
-
./spec/requests/govpay_spec.rb[1:1:1:2:1] | passed | 0.
|
22
|
-
./spec/requests/govpay_spec.rb[1:1:2:1:1] | passed | 0.
|
23
|
-
./spec/requests/govpay_spec.rb[1:1:2:2:1] | passed | 0.
|
24
|
-
./spec/requests/govpay_spec.rb[1:1:3:1:1] | passed | 0.
|
25
|
-
./spec/requests/govpay_spec.rb[1:1:3:2:1] | passed | 0.
|
26
|
-
./spec/requests/govpay_spec.rb[1:1:4:1:1] | passed | 0.
|
3
|
+
./spec/defra_ruby_mocks_spec.rb[1:1:1] | passed | 0.00743 seconds |
|
4
|
+
./spec/defra_ruby_mocks_spec.rb[1:2:1:1] | passed | 0.00022 seconds |
|
5
|
+
./spec/defra_ruby_mocks_spec.rb[1:2:2:1] | passed | 0.00682 seconds |
|
6
|
+
./spec/lib/configuration_spec.rb[1:1:1:1] | passed | 0.00013 seconds |
|
7
|
+
./spec/lib/configuration_spec.rb[1:1:2:1] | passed | 0.00012 seconds |
|
8
|
+
./spec/lib/configuration_spec.rb[1:1:3:1] | passed | 0.00012 seconds |
|
9
|
+
./spec/lib/configuration_spec.rb[1:1:4:1] | passed | 0.00013 seconds |
|
10
|
+
./spec/lib/configuration_spec.rb[1:2:1:1] | passed | 0.00012 seconds |
|
11
|
+
./spec/lib/configuration_spec.rb[1:2:2:1] | passed | 0.00246 seconds |
|
12
|
+
./spec/lib/configuration_spec.rb[1:2:3:1] | passed | 0.00019 seconds |
|
13
|
+
./spec/lib/configuration_spec.rb[1:2:4:1] | passed | 0.00013 seconds |
|
14
|
+
./spec/requests/company_spec.rb[1:1:1:1] | passed | 0.01314 seconds |
|
15
|
+
./spec/requests/company_spec.rb[1:1:2:1] | passed | 0.00424 seconds |
|
16
|
+
./spec/requests/company_spec.rb[1:1:3:1:1] | passed | 0.00571 seconds |
|
17
|
+
./spec/requests/company_spec.rb[1:1:3:2:1] | passed | 0.00385 seconds |
|
18
|
+
./spec/requests/company_spec.rb[1:2:1] | passed | 0.00214 seconds |
|
19
|
+
./spec/requests/govpay_spec.rb[1:1:1:1:1] | passed | 0.00521 seconds |
|
20
|
+
./spec/requests/govpay_spec.rb[1:1:1:1:2] | passed | 0.01121 seconds |
|
21
|
+
./spec/requests/govpay_spec.rb[1:1:1:2:1] | passed | 0.05628 seconds |
|
22
|
+
./spec/requests/govpay_spec.rb[1:1:2:1:1] | passed | 0.00759 seconds |
|
23
|
+
./spec/requests/govpay_spec.rb[1:1:2:2:1] | passed | 0.02312 seconds |
|
24
|
+
./spec/requests/govpay_spec.rb[1:1:3:1:1] | passed | 0.00365 seconds |
|
25
|
+
./spec/requests/govpay_spec.rb[1:1:3:2:1] | passed | 0.00474 seconds |
|
26
|
+
./spec/requests/govpay_spec.rb[1:1:4:1:1] | passed | 0.00469 seconds |
|
27
27
|
./spec/requests/govpay_spec.rb[1:2:1:1] | passed | 0.00168 seconds |
|
28
|
-
./spec/requests/govpay_spec.rb[1:2:2:1] | passed | 0.
|
29
|
-
./spec/requests/govpay_spec.rb[1:2:3:1] | passed | 0.
|
30
|
-
./spec/requests/officers_spec.rb[1:1:1] | passed | 0.
|
31
|
-
./spec/requests/officers_spec.rb[1:2:1] | passed | 0.
|
32
|
-
./spec/services/companies_house_service_spec.rb[1:1:1:1] | passed | 0.
|
33
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:1:1] | passed | 0.
|
34
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:1:2] | passed | 0.
|
28
|
+
./spec/requests/govpay_spec.rb[1:2:2:1] | passed | 0.009 seconds |
|
29
|
+
./spec/requests/govpay_spec.rb[1:2:3:1] | passed | 0.00754 seconds |
|
30
|
+
./spec/requests/officers_spec.rb[1:1:1] | passed | 0.04059 seconds |
|
31
|
+
./spec/requests/officers_spec.rb[1:2:1] | passed | 0.00237 seconds |
|
32
|
+
./spec/services/companies_house_service_spec.rb[1:1:1:1] | passed | 0.0034 seconds |
|
33
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:1:1] | passed | 0.00012 seconds |
|
34
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:1:2] | passed | 0.00011 seconds |
|
35
35
|
./spec/services/companies_house_service_spec.rb[1:1:2:2:1] | passed | 0.00014 seconds |
|
36
36
|
./spec/services/companies_house_service_spec.rb[1:1:2:2:2] | passed | 0.00012 seconds |
|
37
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:3:1] | passed | 0.
|
38
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:3:2] | passed | 0.
|
37
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:3:1] | passed | 0.00012 seconds |
|
38
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:3:2] | passed | 0.00013 seconds |
|
39
39
|
./spec/services/companies_house_service_spec.rb[1:1:2:4:1] | passed | 0.00012 seconds |
|
40
40
|
./spec/services/companies_house_service_spec.rb[1:1:2:4:2] | passed | 0.00012 seconds |
|
41
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:5:1] | passed | 0.
|
42
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:5:2] | passed | 0.
|
43
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:6:1] | passed | 0.
|
44
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:6:2] | passed | 0.
|
45
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:7:1] | passed | 0.
|
46
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:7:2] | passed | 0.
|
41
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:5:1] | passed | 0.00012 seconds |
|
42
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:5:2] | passed | 0.00013 seconds |
|
43
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:6:1] | passed | 0.00017 seconds |
|
44
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:6:2] | passed | 0.00013 seconds |
|
45
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:7:1] | passed | 0.00014 seconds |
|
46
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:7:2] | passed | 0.00012 seconds |
|
47
47
|
./spec/services/companies_house_service_spec.rb[1:1:2:8:1] | passed | 0.00012 seconds |
|
48
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:8:2] | passed | 0.
|
49
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:9:1] | passed | 0.
|
50
|
-
./spec/services/companies_house_service_spec.rb[1:1:2:9:2] | passed | 0.
|
51
|
-
./spec/services/companies_house_service_spec.rb[1:1:3:1] | passed | 0.
|
48
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:8:2] | passed | 0.00012 seconds |
|
49
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:9:1] | passed | 0.00014 seconds |
|
50
|
+
./spec/services/companies_house_service_spec.rb[1:1:2:9:2] | passed | 0.00012 seconds |
|
51
|
+
./spec/services/companies_house_service_spec.rb[1:1:3:1] | passed | 0.00015 seconds |
|
52
52
|
./spec/services/companies_house_service_spec.rb[1:1:3:2] | passed | 0.00011 seconds |
|
53
|
-
./spec/services/companies_house_service_spec.rb[1:1:3:3] | passed | 0.
|
54
|
-
./spec/services/companies_house_service_spec.rb[1:1:3:4] | passed | 0.
|
53
|
+
./spec/services/companies_house_service_spec.rb[1:1:3:3] | passed | 0.00011 seconds |
|
54
|
+
./spec/services/companies_house_service_spec.rb[1:1:3:4] | passed | 0.00012 seconds |
|
55
55
|
./spec/services/companies_house_service_spec.rb[1:1:4:1:1] | passed | 0.00013 seconds |
|
56
56
|
./spec/services/companies_house_service_spec.rb[1:1:4:2:1] | passed | 0.00016 seconds |
|
57
|
-
./spec/services/govpay_create_payment_service_spec.rb[1:1:1:1] | passed |
|
58
|
-
./spec/services/govpay_create_payment_service_spec.rb[1:1:1:2] | passed | 0.
|
59
|
-
./spec/services/govpay_create_payment_service_spec.rb[1:1:1:3] | passed |
|
60
|
-
./spec/services/govpay_create_payment_service_spec.rb[1:1:1:4] | passed | 0.
|
61
|
-
./spec/services/govpay_get_payment_service_spec.rb[1:1:1:1] | passed | 0.
|
62
|
-
./spec/services/govpay_get_payment_service_spec.rb[1:1:1:2] | passed | 0.
|
63
|
-
./spec/services/govpay_refund_details_service_spec.rb[1:1:1:1] | passed | 0.
|
64
|
-
./spec/services/govpay_refund_details_service_spec.rb[1:1:2:1:1] | passed | 0.
|
65
|
-
./spec/services/govpay_refund_details_service_spec.rb[1:1:2:2:1] | passed | 0.
|
66
|
-
./spec/services/govpay_refund_details_service_spec.rb[1:1:2:3:1] | passed | 0.
|
67
|
-
./spec/services/govpay_request_refund_service_spec.rb[1:1:1:1] | passed | 0.
|
68
|
-
./spec/services/govpay_request_refund_service_spec.rb[1:1:1:2] | passed | 0.
|
57
|
+
./spec/services/govpay_create_payment_service_spec.rb[1:1:1:1] | passed | 0.00481 seconds |
|
58
|
+
./spec/services/govpay_create_payment_service_spec.rb[1:1:1:2] | passed | 0.0074 seconds |
|
59
|
+
./spec/services/govpay_create_payment_service_spec.rb[1:1:1:3] | passed | 2.99 seconds |
|
60
|
+
./spec/services/govpay_create_payment_service_spec.rb[1:1:1:4] | passed | 0.005 seconds |
|
61
|
+
./spec/services/govpay_get_payment_service_spec.rb[1:1:1:1] | passed | 0.00141 seconds |
|
62
|
+
./spec/services/govpay_get_payment_service_spec.rb[1:1:1:2] | passed | 0.00106 seconds |
|
63
|
+
./spec/services/govpay_refund_details_service_spec.rb[1:1:1:1] | passed | 0.0017 seconds |
|
64
|
+
./spec/services/govpay_refund_details_service_spec.rb[1:1:2:1:1] | passed | 0.0028 seconds |
|
65
|
+
./spec/services/govpay_refund_details_service_spec.rb[1:1:2:2:1] | passed | 0.03805 seconds |
|
66
|
+
./spec/services/govpay_refund_details_service_spec.rb[1:1:2:3:1] | passed | 0.00267 seconds |
|
67
|
+
./spec/services/govpay_request_refund_service_spec.rb[1:1:1:1] | passed | 0.00104 seconds |
|
68
|
+
./spec/services/govpay_request_refund_service_spec.rb[1:1:1:2] | passed | 0.00148 seconds |
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: defra_ruby_mocks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.4.
|
4
|
+
version: 2.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Defra
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|