筆記 - Web Tech Topic 02
2016-08-04 19:14:39

Rspec

what is feature spec

  • mimic user behavior
  • three parts: visit url, input, result

feature spec vs request spec

  • feature spec: mvc
  • request spec: mvc * n

Capybara

  • test email: open_email, current_eamil (capybara-eamil)

tools

  • selenium, marionette
  • database_cleaner to sync the web behavior
  • save_and_open_page

tips

  • use real name to create user for testing, easy to find and check

Vagrant

commands

  • init ubuntu/trusty64
  • up
  • status
  • ssh
  • halt
  • reload - reload config and reboot

vagrantfile

  • - 不檢查版本

provisioning

  • 自動化執行指令
  • 寫在vagrantfile
  • config.vm.provision "shell", inline: "nginx -v"

打包

  • package --output xxx.box
  • box add xxx.box