-
Couldn't load subscription status.
- Fork 69
Introducing Persisters #347
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| module Persister | ||
| class MemberPersister | ||
| attr_accessor :member | ||
|
|
||
| def initialize(member) | ||
| @member = member | ||
| end | ||
|
|
||
| def save | ||
| member.save | ||
| end | ||
| end | ||
| end |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| module Persister | ||
| class PostPersister | ||
| attr_accessor :post | ||
|
|
||
| def initialize(post) | ||
| @post = post | ||
| end | ||
|
|
||
| def save | ||
| post.save | ||
| end | ||
|
|
||
| def update_attributes(params) | ||
| post.update_attributes(params) | ||
| end | ||
| end | ||
| end |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| module Persister | ||
| class TransferPersister | ||
| attr_accessor :transfer | ||
|
|
||
| def initialize(transfer) | ||
| @transfer = transfer | ||
| end | ||
|
|
||
| def save | ||
| transfer.save | ||
| end | ||
| end | ||
| end |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| require 'spec_helper' | ||
|
|
||
| describe Persister::MemberPersister do | ||
| let(:organization) { Fabricate(:organization) } | ||
| let(:user) { Fabricate(:user) } | ||
|
|
||
| describe '#save' do | ||
| it 'saves the member' do | ||
| member = Member.new(user: user, organization: organization) | ||
|
|
||
| persister = ::Persister::MemberPersister.new(member) | ||
| persister.save | ||
|
|
||
| expect(member).to be_persisted | ||
| end | ||
| end | ||
| end |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| require 'spec_helper' | ||
|
|
||
| describe Persister::PostPersister do | ||
| let(:organization) { Fabricate(:organization) } | ||
| let(:user) { Fabricate(:user) } | ||
| let(:category) { Fabricate(:category) } | ||
| let(:post) { Fabricate(:post, organization: organization) } | ||
|
|
||
| describe '#save' do | ||
| it 'saves the post' do | ||
| post = Offer.new(organization: organization, user: user, category: category, title: 'Title') | ||
| persister = ::Persister::PostPersister.new(post) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Move both to |
||
|
|
||
| persister.save | ||
|
|
||
| expect(post).to be_persisted | ||
| end | ||
| end | ||
|
|
||
| describe '#update_attributes' do | ||
| it 'updates the attributes' do | ||
| persister = ::Persister::PostPersister.new(post) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same |
||
| persister.update_attributes(title: 'New title') | ||
|
|
||
| expect(post.title).to eq('New title') | ||
| end | ||
| end | ||
| end | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| require 'spec_helper' | ||
|
|
||
| describe Persister::TransferPersister do | ||
| let(:source_account) { Fabricate(:account) } | ||
| let(:destination_account) { Fabricate(:account) } | ||
| let(:organization) { Fabricate(:organization) } | ||
| let(:post) { Fabricate(:post, organization: organization) } | ||
|
|
||
| describe '#save' do | ||
| it 'saves the transfer' do | ||
| transfer = Transfer.new(post: post, source: source_account, destination: destination_account) | ||
|
|
||
| persister = ::Persister::TransferPersister.new(transfer) | ||
| persister.save | ||
|
|
||
| expect(transfer).to be_persisted | ||
| end | ||
| end | ||
| end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
membersorMember?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
memberswould be the same as doingMember.where(user: self, ...