Navigation Menu

Skip to content

Commit

Permalink
Remove needless "_column" suffix
Browse files Browse the repository at this point in the history
The test case is for column. So it is needless.
  • Loading branch information
kou committed Apr 24, 2014
1 parent 7e63502 commit 6e40756
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit/plugins/groonga/test_column_list.rb
Expand Up @@ -64,7 +64,7 @@ def test_unknown_table
end

class ListTest < self
def test_fix_column
def test_fix
Groonga::Schema.define(:context => @context) do |schema|
schema.create_table("Books", :type => :hash)
schema.change_table("Books") do |table|
Expand All @@ -87,7 +87,7 @@ def test_fix_column
assert_equal(expected, response.last)
end

def test_var_column
def test_var
Groonga::Schema.define(:context => @context) do |schema|
schema.create_table("Books", :type => :hash)
schema.change_table("Books") do |table|
Expand All @@ -110,7 +110,7 @@ def test_var_column
assert_equal(expected, response.last)
end

def test_vector_column
def test_vector
Groonga::Schema.define(:context => @context) do |schema|
schema.create_table("Books", :type => :hash)
schema.change_table("Books") do |table|
Expand All @@ -133,7 +133,7 @@ def test_vector_column
assert_equal(expected, response.last)
end

def test_index_column
def test_index
Groonga::Schema.define(:context => @context) do |schema|
schema.create_table("Books", :type => :hash)
schema.change_table("Books") do |table|
Expand Down

0 comments on commit 6e40756

Please sign in to comment.