如何在開發的過程中加入測試。
- Model
- Repository
- Controller
- Auth
{ | |
// http://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"arrowFunctions": false, // enable arrow functions | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"classes": false, // enable classes | |
"defaultParams": false, // enable default function parameters | |
"destructuring": false, // enable destructuring |
/* original link http://blog.gasolin.idv.tw/2014/11/flux-javascript.html */ | |
// Renderer.js | |
var ClickRenderer = { | |
init: function s_init(element, Store) { | |
this.element = element; | |
this.store = Store; | |
window.addEventListener('render_view1', this); | |
}, | |
handleEvent: s_handleEvent(evt) { |
<?php | |
namespace Pokus; | |
class Exception extends \Exception | |
{ | |
} | |
function tttt($string) | |
{ | |
try { |
#!/bin/bash | |
# Author: Erik Kristensen | |
# Email: [email protected] | |
# License: MIT | |
# Nagios Usage: check_nrpe!check_docker_container!_container_id_ | |
# Usage: ./check_docker_container.sh _container_id_ | |
# | |
# The script checks if a container is running. | |
# OK - running |
find ami: ami-a163b4cc
# see https://docs.docker.com/engine/installation/linux/ubuntu/
sudo apt-get update
sudo apt-get install -y \
apt-transport-https \
ca-certificates \
curl \
software-properties-common