anadea-mailsocio-qa 0.1.5 → 0.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 94cc8e6c0ef28f5a3bb56176ed46fb2a2a960a44
4
- data.tar.gz: 68057e5a08bf43d5be332f2e5e8a4eb59ccd0323
3
+ metadata.gz: 5dee8f8acfd5994d7c03c6121e3b38b430e59b43
4
+ data.tar.gz: 549bb8a9398d4d88ef02e0aea6aee1ca49cd9dcd
5
5
  SHA512:
6
- metadata.gz: ce6e243005a7bc4c3968af464f959d41d5f776f34d082a2400a103062110da1344b216e3ee6ca5ad61819dc5ca33668d994630cf59a6330f7d62220e221eaeed
7
- data.tar.gz: 1e36ca610c66c8d0e536565fb1a8a29f557741016a57484d7ca1fbe53eb07d8f4d3f7d328ac7f2a0375dcea12f7366284fd38e60b9c6f6f437af743bff6993c9
6
+ metadata.gz: e3817a8e0cc41982e49264ccab0aa4602803fe61f3ada660abce020095d8561721fe7c807d97ab13985e498b3804520ba55802bb97b3480dbeabfd552f0debf5
7
+ data.tar.gz: 62da4a8be903af86848fcf59ec2da3ae9869a5ce177ce71a58887ae0b52727b0df08071d6a4e033351ce5f2a6639c273d55258755a3613c69e277b977034a263
@@ -215,9 +215,7 @@ NONASCIIHTML
215
215
  domain = settings.trap.custom_tracking_domain
216
216
  attrs = @client.create_account(custom_tracking_domain: domain)
217
217
  @client.custom_tracking_domain = domain
218
- assert_wont_raise('Could not read account via custom tracking domain URL') do
219
- @client.read_account
220
- end
218
+ @client.read_account
221
219
  assert attrs['custom_tracking_enabled'], 'Custom tracking is disabled'
222
220
  assert attrs['custom_signing_enabled'], 'Custom signing is disabled'
223
221
 
data/mailsocio-qa.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'anadea-mailsocio-qa'
3
- s.version = '0.1.5'
3
+ s.version = '0.1.6'
4
4
  s.platform = Gem::Platform::RUBY
5
5
  s.summary = "Mailsocio Quality Assurance"
6
6
  s.description = s.summary
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: anadea-mailsocio-qa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anadea
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-12 00:00:00.000000000 Z
11
+ date: 2015-05-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -131,7 +131,6 @@ files:
131
131
  - lib/mailsocio_qa/settings.rb
132
132
  - lib/mailsocio_qa/test_client.rb
133
133
  - lib/mailsocio_qa/test_html_page.rb
134
- - lib/minitest/mailsocio_qa_plugin.rb
135
134
  - mailsocio-qa.gemspec
136
135
  - settings.yml
137
136
  homepage:
@@ -1,15 +0,0 @@
1
- module Minitest
2
- class Test
3
- def self.runnable_methods
4
- methods_matching(/^test_/)
5
- end
6
- end
7
-
8
- module Assertions
9
- def assert_wont_raise error_message
10
- yield
11
- rescue
12
- assert false, error_message
13
- end
14
- end
15
- end