对于如何测试下面的方法,我现在的思考是:
def do_something
do_action_one
do_action_two(10)
another.do_abc
if ok?
do_action_z
package main | |
import ( | |
"database/sql" | |
"fmt" | |
"time" | |
_ "modernc.org/sqlite" | |
) |
// | |
// ContentView.swift | |
// SwiftUI-Weather | |
// | |
// Created by David Zhang on 2023/11/23. | |
// | |
import SwiftUI | |
struct ContentView: View { |
对于如何测试下面的方法,我现在的思考是:
def do_something
do_action_one
do_action_two(10)
another.do_abc
if ok?
do_action_z
" General | |
set shell=/bin/zsh | |
set nocompatible " Disable vi compatibility | |
set history=256 " Number of things to remember | |
set autowrite " Writes on make/shell commands | |
set autoread | |
"set timeoutlen=250 " Time to wait after ESC (default causes an annoying delay) | |
set clipboard+=unnamed " Yanks go on clipboard instead | |
set tags=./tags;$HOME " Walk directory tree up to $HOME looking for tags | |
noremap <S-t> :! ctags -R --languages=Ruby --exclude=.git --exclude=log --exclude=node_modules -f tags<CR> |
sudo apt-get update | |
sudo apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository \ | |
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | |
$(lsb_release -cs) \ |
sudo apt update | |
sudo apt-get -y install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository \ | |
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \ | |
$(lsb_release -cs) \ | |
stable" |
source "https://rubygems.org" | |
gem 'eventmachine' | |
#gem 'rubysl-stringio' | |
gem 'sinatra' | |
gem 'yajl-ruby', require: 'yajl' | |
gem 'thin' | |
gem 'em-websocket', :git=>'https://github.com/igrigorik/em-websocket.git' | |
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid main restricted | |
## Major bug fix updates produced after the final release of the | |
## distribution. | |
deb http://us.archive.ubuntu.com/ubuntu/ lucid-updates main restricted | |
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid-updates main restricted | |
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu | |
## team. Also, please note that software in universe WILL NOT receive any | |
## review or updates from the Ubuntu security team. |
upstream thin { | |
server 127.0.0.1:3000; | |
} | |
#server { | |
# listen 80; | |
# server_name example.com; | |
# rewrite ^(.*)$ http://www.example.com$1 permanent; | |
#} |