Skip to content

Commit

Permalink
1.2.0 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ConfusedVorlon committed Nov 10, 2015
1 parent f46d3f5 commit aaa85df
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
6 changes: 3 additions & 3 deletions HSTestingBackchannel.podspec
Expand Up @@ -3,7 +3,7 @@ Pod::Spec.new do |s|


s.name = "HSTestingBackchannel"
s.version = "1.1.2"
s.version = "1.2.0"

s.summary = "Send notifications directly from your UITesting classes to your running app."

Expand All @@ -21,9 +21,9 @@ Pod::Spec.new do |s|

s.author = { "Rob" => "Rob@HobbyistSoftware.com" }

s.platform = :ios, "6.0"
s.platform = :ios, "7.0"

s.source = { :git => "https://github.com/ConfusedVorlon/HSTestingBackchannel.git", :tag => "1.1.2" }
s.source = { :git => "https://github.com/ConfusedVorlon/HSTestingBackchannel.git", :tag => "1.2.0" }


s.source_files = "Classes", "Classes/**/*.{h,m}"
Expand Down
12 changes: 10 additions & 2 deletions README.md
Expand Up @@ -41,7 +41,12 @@ or download the class and add it to your project.
3. Send notifications from your UITesting class


[HSTestingBackchannel sendNotification:@“SnapshotTest"];
[HSTestingBackchannel sendNotification:@"SnapshotTest"];

or

[HSTestingBackchannel sendNotification:@"SnapshotTest"
withDictionary:@{@"key":@"value"}];

5. Respond to notifications within your app

Expand All @@ -57,7 +62,10 @@ or download the class and add it to your project.

Within a test method (or in setUp), call something like

[HSTestingBackchannel installFilesFrom:@“..pathTo/fastlane/DummyImages" to:HSTestingResources];
[HSTestingBackchannel installFilesFrom:@"..pathTo/fastlane/DummyImages"
to:HSTestingResources];



This will install the contents of DummyImages in the resources folder of your running app.
You can also install directly to the Documents directory in the app.
Expand Down

0 comments on commit aaa85df

Please sign in to comment.