- Timestamp:
- 11/30/2017 11:09:33 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/admin/includesCommunityEvents.php
r42016 r42343 202 202 return array( 203 203 'headers' => '', 204 'body' => wp_json_encode( array( 205 'location' => $this->get_user_location(), 206 'events' => array( 207 array( 208 'type' => 'meetup', 209 'title' => 'Flexbox + CSS Grid: Magic for Responsive Layouts', 210 'url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/events/236031233/', 211 'meetup' => 'The East Bay WordPress Meetup Group', 212 'meetup_url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/', 213 'date' => date( 'Y-m-d H:i:s', strtotime( 'next Sunday 1pm' ) ), 214 'location' => array( 215 'location' => 'Oakland, CA, USA', 216 'country' => 'us', 217 'latitude' => 37.808453, 218 'longitude' => -122.26593, 204 'body' => wp_json_encode( 205 array( 206 'location' => $this->get_user_location(), 207 'events' => array( 208 array( 209 'type' => 'meetup', 210 'title' => 'Flexbox + CSS Grid: Magic for Responsive Layouts', 211 'url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/events/236031233/', 212 'meetup' => 'The East Bay WordPress Meetup Group', 213 'meetup_url' => 'https://www.meetup.com/Eastbay-WordPress-Meetup/', 214 'date' => date( 'Y-m-d H:i:s', strtotime( 'next Sunday 1pm' ) ), 215 'location' => array( 216 'location' => 'Oakland, CA, USA', 217 'country' => 'us', 218 'latitude' => 37.808453, 219 'longitude' => -122.26593, 220 ), 221 ), 222 array( 223 'type' => 'meetup', 224 'title' => 'Part 3- Site Maintenance - Tools to Make It Easy', 225 'url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/237706839/', 226 'meetup' => 'WordPress Bay Area Foothills Group', 227 'meetup_url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/', 228 'date' => date( 'Y-m-d H:i:s', strtotime( 'next Wednesday 1:30pm' ) ), 229 'location' => array( 230 'location' => 'Milpitas, CA, USA', 231 'country' => 'us', 232 'latitude' => 37.432813, 233 'longitude' => -121.907095, 234 ), 235 ), 236 array( 237 'type' => 'wordcamp', 238 'title' => 'WordCamp Kansas City', 239 'url' => 'https://2017.kansascity.wordcamp.org', 240 'meetup' => null, 241 'meetup_url' => null, 242 'date' => date( 'Y-m-d H:i:s', strtotime( 'next Saturday' ) ), 243 'location' => array( 244 'location' => 'Kansas City, MO', 245 'country' => 'US', 246 'latitude' => 39.0392325, 247 'longitude' => -94.577076, 248 ), 219 249 ), 220 250 ), 221 array( 222 'type' => 'meetup', 223 'title' => 'Part 3- Site Maintenance - Tools to Make It Easy', 224 'url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/events/237706839/', 225 'meetup' => 'WordPress Bay Area Foothills Group', 226 'meetup_url' => 'https://www.meetup.com/Wordpress-Bay-Area-CA-Foothills/', 227 'date' => date( 'Y-m-d H:i:s', strtotime( 'next Wednesday 1:30pm' ) ), 228 'location' => array( 229 'location' => 'Milpitas, CA, USA', 230 'country' => 'us', 231 'latitude' => 37.432813, 232 'longitude' => -121.907095, 233 ), 234 ), 235 array( 236 'type' => 'wordcamp', 237 'title' => 'WordCamp Kansas City', 238 'url' => 'https://2017.kansascity.wordcamp.org', 239 'meetup' => null, 240 'meetup_url' => null, 241 'date' => date( 'Y-m-d H:i:s', strtotime( 'next Saturday' ) ), 242 'location' => array( 243 'location' => 'Kansas City, MO', 244 'country' => 'US', 245 'latitude' => 39.0392325, 246 'longitude' => -94.577076, 247 ), 248 ), 249 ), 250 ) ), 251 ) 252 ), 251 253 'response' => array( 252 254 'code' => 200,
Note: See TracChangeset
for help on using the changeset viewer.