Открыть боковую панель
nt_test131
nt_project_mew3zppo8pda
Коммиты
e8a6495b
Коммит
e8a6495b
создал
Июл 21, 2015
по автору
Valery Sizov
Просмотр файлов
Revert "Update noteable after a new note is added"
This reverts commit
fbdaf0e2
.
владелец
ab94ed08
Изменения
3
Скрыть пробелы
Построчно
Рядом
app/models/note.rb
Просмотр файла @
e8a6495b
...
...
@@ -31,7 +31,7 @@ class Note < ActiveRecord::Base
participant
:author
,
:mentioned_users
belongs_to
:project
belongs_to
:noteable
,
polymorphic:
true
,
touch:
true
belongs_to
:noteable
,
polymorphic:
true
belongs_to
:author
,
class_name:
"User"
delegate
:name
,
to: :project
,
prefix:
true
...
...
spec/lib/gitlab/note_data_builder_spec.rb
Просмотр файла @
e8a6495b
...
...
@@ -36,7 +36,6 @@
let
(
:note
)
{
create
(
:note_on_issue
,
noteable_id:
issue
.
id
)
}
it
'returns the note and issue-specific data'
do
data
[
:issue
][
"updated_at"
]
=
fixed_time
expect
(
data
).
to
have_key
(
:issue
)
expect
(
data
[
:issue
]).
to
eq
(
issue
.
hook_attrs
)
end
...
...
@@ -47,7 +46,6 @@
let
(
:note
)
{
create
(
:note_on_merge_request
,
noteable_id:
merge_request
.
id
)
}
it
'returns the note and merge request data'
do
data
[
:merge_request
][
"updated_at"
]
=
fixed_time
expect
(
data
).
to
have_key
(
:merge_request
)
expect
(
data
[
:merge_request
]).
to
eq
(
merge_request
.
hook_attrs
)
end
...
...
@@ -58,7 +56,6 @@
let
(
:note
)
{
create
(
:note_on_merge_request_diff
,
noteable_id:
merge_request
.
id
)
}
it
'returns the note and merge request diff data'
do
data
[
:merge_request
][
"updated_at"
]
=
fixed_time
expect
(
data
).
to
have_key
(
:merge_request
)
expect
(
data
[
:merge_request
]).
to
eq
(
merge_request
.
hook_attrs
)
end
...
...
@@ -69,7 +66,6 @@
let!
(
:note
)
{
create
(
:note_on_project_snippet
,
noteable_id:
snippet
.
id
)
}
it
'returns the note and project snippet data'
do
data
[
:snippet
][
"updated_at"
]
=
fixed_time
expect
(
data
).
to
have_key
(
:snippet
)
expect
(
data
[
:snippet
]).
to
eq
(
snippet
.
hook_attrs
)
end
...
...
spec/models/note_spec.rb
Просмотр файла @
e8a6495b
...
...
@@ -22,7 +22,7 @@
describe
Note
do
describe
'associations'
do
it
{
is_expected
.
to
belong_to
(
:project
)
}
it
{
is_expected
.
to
belong_to
(
:noteable
)
.
touch
(
true
)
}
it
{
is_expected
.
to
belong_to
(
:noteable
)
}
it
{
is_expected
.
to
belong_to
(
:author
).
class_name
(
'User'
)
}
end
...
...
Редактирование
Предварительный просмотр
Поддерживает Markdown
0%
Попробовать снова
или
прикрепить новый файл
.
Отмена
You are about to add
0
people
to the discussion. Proceed with caution.
Сначала завершите редактирование этого сообщения!
Отмена
Пожалуйста,
зарегистрируйтесь
или
войдите
чтобы прокомментировать