1
0
Fork 0
mirror of synced 2024-06-29 03:51:09 -04:00
ultimate-vim/sources_non_forked/vim-scala/spec/import_sorting_spec.rb
2017-08-25 17:35:23 -07:00

17 lines
385 B
Ruby

require "spec_helper"
describe ":SortScalaImports" do
describe "Sorting across groups" do
["vanilla", "no_newline", "no_newline_after", "no_package",
"multiple_newlines"].each do |name|
it "should sort vanilla file" do
actual = sort_fixture_across_groups name
expected = expected(name)
actual.should eq(expected)
end
end
end
end