We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c06e43 commit fffd270Copy full SHA for fffd270
test/test_ruby_http_client.rb
@@ -171,4 +171,11 @@ def test_method_missing
171
assert_equal({'message' => 'success'}, response.body)
172
assert_equal({'headers' => 'test'}, response.headers)
173
end
174
+
175
+ def test_license_date_is_updated
176
+ license_end_year = IO.read('LICENSE.txt').match(/Copyright \(c\) 2016-(\d{4}) SendGrid/)[1].to_i
177
+ current_year = Time.new.year
178
179
+ assert_equal(current_year, license_end_year)
180
+ end
181
0 commit comments