webconsole 0.1.14 → 0.1.15
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 90d8486354073259fe5c6ac1c0607e31efe2d4ce
|
|
4
|
+
data.tar.gz: 1229f80e58dd748a94b5401d632f776364e4a999
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 016ecc11bb9faef30fdd7214be827e5cdf76d9168aaa958930c9eb3a1e9cc323074d06e43e84fb106053e0376c01a2e0f67a80156dda45ddcb0bed8d5d4f9531
|
|
7
|
+
data.tar.gz: 77273a9d006de4a6720e6df7237092440cce51ef35983119561489b4e971e3d351bc85fa0f77a72cdddb28b061a6a3ee07c0456addff8a0d9ae2f53df7f2dc73
|
|
Binary file
|
|
@@ -53,6 +53,12 @@ module WebConsole
|
|
|
53
53
|
def self.window_id_for_plugin(name)
|
|
54
54
|
result = self.run_applescript(WINDOW_ID_FOR_PLUGIN_SCRIPT, [name])
|
|
55
55
|
result.chomp!
|
|
56
|
+
|
|
57
|
+
if result.empty?
|
|
58
|
+
# TODO: Remove this when doing `run_applescript` refactor
|
|
59
|
+
return nil
|
|
60
|
+
end
|
|
61
|
+
|
|
56
62
|
return result
|
|
57
63
|
end
|
|
58
64
|
|
|
@@ -27,7 +27,6 @@ class TestUnintializedLogger < Test::Unit::TestCase
|
|
|
27
27
|
|
|
28
28
|
def teardown
|
|
29
29
|
WebConsole::Tests::Helper::quit
|
|
30
|
-
WebConsole::Tests::Helper::confirm_dialog
|
|
31
30
|
assert(!WebConsole::Tests::Helper::is_running, "The application should not be running.")
|
|
32
31
|
end
|
|
33
32
|
|
|
@@ -64,7 +63,6 @@ class TestLogger < Test::Unit::TestCase
|
|
|
64
63
|
|
|
65
64
|
def teardown
|
|
66
65
|
WebConsole::Tests::Helper::quit
|
|
67
|
-
WebConsole::Tests::Helper::confirm_dialog
|
|
68
66
|
assert(!WebConsole::Tests::Helper::is_running, "The application should not be running.")
|
|
69
67
|
end
|
|
70
68
|
|