Skip to content

Commit

Permalink
🐴
Browse files Browse the repository at this point in the history
  • Loading branch information
soutaro committed Apr 12, 2024
1 parent 308ff3d commit 37c287c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require "rake/testtask"
Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList["test/**/test_*.rb"]
t.test_files = FileList["test/**/*_test.rb"]
end

task default: :test
4 changes: 2 additions & 2 deletions test/rbs/inline/annotation_parser_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def test_return_type_annotation
end
end

def test_return_type_annotation
def test_type_assertion
annots = AnnotationParser.parse(parse_comments(<<~RUBY))
#:: (String) -> void
#:: [Integer, String]
Expand All @@ -111,7 +111,7 @@ def test_return_type_annotation
end
end

def test_return_type_application
def test_type_application
annots = AnnotationParser.parse(parse_comments(<<~RUBY))
#[String, Integer]
#[String[
Expand Down

0 comments on commit 37c287c

Please sign in to comment.