对于如何测试下面的方法,我现在的思考是:
def do_something
do_action_one
do_action_two(10)
another.do_abc
if ok?
do_action_z
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' | |
" 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> |
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 { |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/socket.h> | |
#include <sys/types.h> | |
#include <unistd.h> | |
#include <netinet/in.h> | |
#include <arpa/inet.h> | |
#include <string.h> | |
#include <errno.h> | |
#include <sys/wait.h> |
set t_Co=256 | |
set nocompatible | |
set mouse=a | |
syntax on | |
filetype on | |
filetype plugin on | |
set autowrite | |
set autoread | |
set number |
class Test | |
class_eval <<-END | |
def self.a | |
puts "a" | |
end | |
END | |
instance_eval <<-END | |
def b | |
puts "b" |
对于如何测试下面的方法,我现在的思考是:
def do_something
do_action_one
do_action_two(10)
another.do_abc
if ok?
do_action_z
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" |