Removes `Repository#version` method and tests

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
This commit is contained in:
Dmitriy Zaporozhets 2017-04-17 14:07:41 +03:00
parent eeaeb2752a
commit 27f519a295
No known key found for this signature in database
GPG Key ID: 627C5F589F467F17
4 changed files with 5 additions and 14 deletions

View File

@ -19,7 +19,7 @@ class Repository
# #
# For example, for entry `:readme` there's a method called `readme` which # For example, for entry `:readme` there's a method called `readme` which
# stores its data in the `readme` cache key. # stores its data in the `readme` cache key.
CACHED_METHODS = %i(size commit_count readme version contribution_guide CACHED_METHODS = %i(size commit_count readme contribution_guide
changelog license_blob license_key gitignore koding_yml changelog license_blob license_key gitignore koding_yml
gitlab_ci_yml branch_names tag_names branch_count gitlab_ci_yml branch_names tag_names branch_count
tag_count avatar exists? empty? root_ref).freeze tag_count avatar exists? empty? root_ref).freeze
@ -32,7 +32,6 @@ class Repository
changelog: :changelog, changelog: :changelog,
license: %i(license_blob license_key), license: %i(license_blob license_key),
contributing: :contribution_guide, contributing: :contribution_guide,
version: :version,
gitignore: :gitignore, gitignore: :gitignore,
koding: :koding_yml, koding: :koding_yml,
gitlab_ci: :gitlab_ci_yml, gitlab_ci: :gitlab_ci_yml,
@ -530,11 +529,6 @@ class Repository
end end
cache_method :readme cache_method :readme
def version
file_on_head(:version)
end
cache_method :version
def contribution_guide def contribution_guide
file_on_head(:contributing) file_on_head(:contributing)
end end

View File

@ -0,0 +1,4 @@
---
title: Remove Repository#version method and tests
merge_request: 10734
author:

View File

@ -66,12 +66,6 @@ class Spinach::Features::Project < Spinach::FeatureSteps
expect(page).not_to have_link('Remove avatar') expect(page).not_to have_link('Remove avatar')
end end
step 'I should see project "Shop" version' do
page.within '.project-side' do
expect(page).to have_content '6.7.0.pre'
end
end
step 'change project default branch' do step 'change project default branch' do
select 'fix', from: 'project_default_branch' select 'fix', from: 'project_default_branch'
click_button 'Save changes' click_button 'Save changes'

View File

@ -1259,7 +1259,6 @@ describe Repository, models: true do
:changelog, :changelog,
:license, :license,
:contributing, :contributing,
:version,
:gitignore, :gitignore,
:koding, :koding,
:gitlab_ci, :gitlab_ci,