Skip to content

Commit fa06065

Browse files
committed
setup ci
1 parent abc9d96 commit fa06065

File tree

5 files changed

+4
-29
lines changed

5 files changed

+4
-29
lines changed

lib/API_Fuzzer/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module APIFuzzer
2-
VERSION = "0.1.0"
2+
VERSION = "0.1.0".freeze
33
end

test/API_Fuzzer_test.rb

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
require 'test_helper'
22

3-
class APIFuzzerTest < Minitest::Test
4-
def test_that_it_has_a_version_number
5-
refute_nil ::APIFuzzer::VERSION
6-
end
7-
8-
def test_it_does_something_useful
9-
assert false
10-
end
3+
class ApiFuzzerTest < Minitest::Test
114
end

test/header_info_test.rb

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,5 @@ class APIFuzzer::HeaderInfoTest < Minitest::Test
66
def setup
77
@response = Http.get('https://www.shopify.ca')
88
@info = API_Fuzzer::HeaderInfo.new(@response)
9-
p @info
10-
end
11-
12-
def test_that_it_has_a_version_number
13-
refute_nil ::APIFuzzer::VERSION
14-
end
15-
16-
def test_it_does_something_useful
17-
assert false
189
end
1910
end

test/resource_info_test.rb

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
11
require 'test_helper'
22
require 'API_Fuzzer/resource_info'
3-
require 'http'
43

54
class APIFuzzer::ResourceInfoTest < Minitest::Test
65
def setup
76
@response = HTTP.get('https://shopify.ca')
87
@info = API_Fuzzer::ResourceInfo.new(@response)
9-
p @info
10-
end
11-
12-
def test_that_it_has_a_version_number
13-
refute_nil ::APIFuzzer::VERSION
14-
end
15-
16-
def test_it_does_something_useful
17-
assert false
188
end
199
end

test/xss_check_test.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
require 'test_helper'
22
require 'API_Fuzzer/xss_check'
33

4-
class APIFuzzer::ResourceInfoTest < Minitest::Test
4+
class APIFuzzer::ResourceInfoTest < Minitest::Test
5+
end

0 commit comments

Comments
 (0)