projects
/
rails.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Bump image_processing from 1.12.1 to 1.12.2
[rails.git]
/
test
/
models
/
tracepoint_test.rb
1
require "test_helper"
2
3
class TracepointTest < ActiveSupport::TestCase
4
def test_timestamp_required
5
tracepoint = create(:tracepoint)
6
assert tracepoint.valid?
7
tracepoint.timestamp = nil
8
assert_not tracepoint.valid?
9
end
10
end