This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - run: | |
| command: | | |
| bundle exec rspec --profile 10 \ | |
| --format RspecJunitFormatter \ | |
| --out /tmp/test-results/rspec.xml \ | |
| --format progress \ | |
| $(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: 2 | |
| jobs: | |
| build: | |
| parallelism: 3 | |
| docker: | |
| - image: circleci/ruby:2.4.2-node | |
| environment: | |
| PGHOST: 127.0.0.1 | |
| PGUSER: user | |
| RAILS_ENV: test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RSpec.configure do |config| | |
| config.before(:each, type: :system) do | |
| driven_by :rack_test | |
| end | |
| config.before(:each, type: :system, js: true) do | |
| driven_by :selenium_chrome_headless | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| displayEditable : Editable -> HTML | |
| displayEditable editable = | |
| case editable of | |
| BeingEdited old new -> | |
| textarea [] [ text new ] | |
| NotBeingEdited value -> | |
| div [] [ text value ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| save : Editable -> Editable | |
| save x = | |
| case x of | |
| BeingEdited _ new -> | |
| NotBeingEdited new | |
| NotBeingEdited _ -> | |
| x | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| edit : Editable -> Editable | |
| edit x = | |
| case x of | |
| BeingEdited old new -> | |
| x | |
| NotBeingEdited value -> | |
| BeingEdited value value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Editable | |
| = BeingEdited String String | |
| | NotBeingEdited String |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Editable { | |
| constructor(text) { | |
| @text = text | |
| @originalText = "" | |
| @status = "notEditing" | |
| } | |
| startEdit { | |
| @status = "editing" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Rubocop file I use for book code | |
| # Note, this is code I work on by myself, so some. things that I don't do I may not have covered | |
| AllCops: | |
| Exclude: | |
| - "db/schema.rb" | |
| - ".bundle/**/*" | |
| - "bin/**/*" | |
| - "vendor/**/*" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PriceCalculator do | |
| it "returns the price of one item" do | |
| calculator = PriceCalcuator.new(Item.new(price: 200)) | |
| expect(calcuator.calculate).to eq(200) | |
| end | |
| end |